home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / applications / jcgraph / rexx / assignf6.rex < prev    next >
OS/2 REXX Batch file  |  1994-11-17  |  480b  |  18 lines

  1. /* AssignF6.rex */
  2. /* ------------ */
  3. /* Description: This script pops a file requester asking for an ARexx */
  4. /*              script path. It will then assign it to the F6 key so  */
  5. /*              that the next time you hit F6, it will be executed.   */
  6.  
  7. options results
  8.  
  9. address 'JCGRAPH'
  10.  
  11. 'requestfile title=Assign_Script_to_F6 path=JcGraph:rexx'
  12.  
  13. HisAssign=result
  14.  
  15. if RC == 0 then do
  16.   'keyboard key=F6 cmd=' || HisAssign
  17.   'requestnotify F6 was assigned to  ' HisAssign
  18. end